home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / comm / uucp / TaylorUUCP1.06.lha / README.Amiga < prev    next >
Text File  |  1999-02-20  |  2KB  |  75 lines

  1. Amiga port of Taylor UUCP 1.06.1 package:
  2.  
  3. * Changes in Amiga Port Of Taylor UUCP v 1.06.1 Package
  4.  
  5.   File and system locking is done with OwnDevUnit.library.
  6.   ulog() uses syslog.library beside its own log files.
  7.   serial code rewriten 100%.
  8.   documentation is now in AmigaGuideĀ® format.
  9.  
  10.   *  default directories and file names
  11.  
  12.     uulib:uucp/      config dir    (orig. /lib/uucp)
  13.     uuspool:         spool dir     (orig. /var/spool/uucp)
  14.     uupub:           public dir    (orig. /var/spool/uucppublic)
  15.     bin:             command path  (orig. /bin /usr/bin /usr/local/bin)
  16.     logs:UUCP-Log    main logfile  (orig. /var/spool/uucp/Log)
  17.     logs:UUCP-Stats  stats logfile (orig. /var/spool/uucp/Stats)
  18.     logs:UUCP-Debug  debug logfile (orig. /var/spool/uucp/Debug)
  19.   
  20.  
  21.   * changes in configuration files
  22.  
  23.     file: uulib:uucp/ports
  24.  
  25.       ``device'' field is changed from /dev/ttyxx style to native Amiga
  26.       serial device names.
  27.  
  28.       for example:
  29.  
  30.       device serial/0
  31.       # indicates that serial.device unit 0 should be used when dialing out.
  32.  
  33.       device telser/9
  34.       # indicates that telser.device unit 9 should be used when dialing out.
  35.  
  36.       * NOTE: you should NOT supply ``.device'' in device name.
  37.  
  38.  
  39.  
  40. * software requirements
  41.  
  42.   OwnDevUnit.library
  43.   syslog.library
  44.  
  45.   pdksh  (for executing shell scripts (uuclean and others))
  46.  
  47.   * getty must be able to set $DEVICE and $UNIT enviroment variables as they
  48.   are used by uucico when determinig to which port (device and unit) is
  49.   attached when started from getty, and must NOT pass -D, -U , and -Getty
  50.   parameters to uucico. A possible workaround could be to make shell script
  51.   that sets the enviroment and then call uucico executable.
  52.  
  53.   -- cut here uucico.sh --
  54.  
  55.   .key -D,-U,-Getty
  56.   .bra {
  57.   .ket }
  58.  
  59.   set DEVICE {-D}
  60.   set UNIT {-U}
  61.   bin:uucico
  62.  
  63.   unset DEVICE
  64.   unset UNIT
  65.  
  66.   -- cut here uucico.sh --
  67.  
  68.   NOTE: this is untested as i use my own version of getty :-) (not included here
  69.         because i don't have time to write proper documentation for it)
  70.  
  71. * getty must set either a $LOGNAME or $USER .
  72.  
  73. * In fact, you'll need a REAL getty program.
  74.  
  75.